home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / gcctest / tests05.zoo / Makefile.hp < prev    next >
Makefile  |  1993-03-02  |  682b  |  33 lines

  1. #
  2. # Makefile for HP-UX hpa700 A.B8.05 E 9000/720 56914181
  3. #
  4. # Must say hpux has come a ways: still fails some of the string tests
  5. #
  6. SRC = float1.c tatof.c tbcopy.c tctype.c tfseek.c tprintf.c tqsort.c \
  7. trandm.c trdwr.c tregex.c tscanf.c tsetjm.c tsignl.c tstdio.c tstring.c \
  8. tstrl1.c tstrl2.c tstrtoul.c ttime.c twrseek.c tmemmv.c
  9.  
  10.  
  11. .SUFFIXES: .ttp
  12.  
  13. .c.ttp:
  14.     $(CC) $(CFLAGS) -o $*.ttp $*.c
  15.  
  16. CC= cc
  17. CFLAGS = -Aa -g +ESlit -D_POSIX_SOURCE
  18.  
  19. ALL = $(SRC:.c=.ttp)
  20.  
  21. all : $(ALL)
  22.  
  23. clean:
  24.     rm -f *.o
  25.  
  26. realclean: clean
  27.     rm -f $(ALL) core report test
  28.  
  29. # writable strings needed for tstdio for sscanf() in sr_test()
  30.  
  31. tstdio.ttp: tstdio.c
  32.     $(CC) -Aa -g -D_POSIX_SOURCE -o tstdio.ttp tstdio.c
  33.